Micron Document
<!DOCTYPE html>
<html class="client-nojs vector-feature-night-mode-disabled vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-sticky-header-enabled" lang="en" dir="ltr"><head>
<meta charset="UTF-8">
<title>Symmetric-key algorithm</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://en.wikipedia.org/wiki/Symmetric-key_algorithm"> <link href="./mw/ext.cite.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.icons.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.search.codex.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/user.styles.css" rel="stylesheet" type="text/css">
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" type="text/css" href="./mw/site.styles.css">
<link rel="stylesheet" type="text/css" href="./mw/noscript.css">
<link rel="stylesheet" type="text/css" href="./footer.css">
<link rel="stylesheet" type="text/css" href="./vector-2022.css">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Symmetric-key_algorithm rootpage-Symmetric-key_algorithm skin-vector-2022 action-view">
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar">
<h1 id="firstHeading" class="firstHeading mw-first-heading">
<span id="openzim-page-title" class="mw-page-title-main"><span class="mw-page-title-main">Symmetric-key algorithm</span></span>
</h1>
</header>
<a id="top"></a>
<div id="bodyContent" class="vector-body ve-init-mw-desktopArticleTarget-targetContainer" aria-labelledby="firstHeading" data-mw-ve-target-container="">
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">

<p><b>Symmetric-key algorithms</b><sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span class="cite-bracket">[</span>a<span class="cite-bracket">]</span></a></sup> are <a href="Algorithm" title="Algorithm">algorithms</a> for <a href="Cryptography" title="Cryptography">cryptography</a> that use the same <a href="Key_(cryptography)" title="Key (cryptography)">cryptographic keys</a> for both the encryption of <a href="Plaintext" title="Plaintext">plaintext</a> and the decryption of <a href="Ciphertext" title="Ciphertext">ciphertext</a>. The keys may be identical, or there may be a simple transformation to go between the two keys.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup> The keys, in practice, represent a <a href="Shared_secret" title="Shared secret">shared secret</a> between two or more parties that can be used to maintain a private information link.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup> The requirement that both parties have access to the secret key is one of the main drawbacks of <a href="Symmetric" class="mw-redirect" title="Symmetric">symmetric</a>-key encryption, in comparison to <a href="Public_key_encryption" class="mw-redirect" title="Public key encryption">public-key encryption</a> (also known as asymmetric-key encryption).<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup> However, symmetric-key encryption algorithms are usually better for bulk encryption. With exception of the <a href="One-time_pad" title="One-time pad">one-time pad</a> they have a smaller key size, which means less storage space and faster transmission. Due to this, asymmetric-key encryption is often used to exchange the secret key for symmetric-key encryption.<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup>
</p>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2"><h2 id="Types">Types</h2></div>
<p>Symmetric-key encryption can use either <a href="Stream_cipher" title="Stream cipher">stream ciphers</a> or <a href="Block_cipher" title="Block cipher">block ciphers</a>.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup>
</p><p>Stream ciphers encrypt the digits (typically <a href="Byte" title="Byte">bytes</a>), or letters (in substitution ciphers) of a message one at a time. An example is <a href="ChaCha20" class="mw-redirect" title="ChaCha20">ChaCha20</a>. <a href="Substitution_cipher" title="Substitution cipher">Substitution ciphers</a> are well-known ciphers, but can be easily decrypted using a <a href="Frequency_table" class="mw-redirect" title="Frequency table">frequency table</a>.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup>
</p><p>Block ciphers take a number of bits and encrypt them in a single unit, padding the plaintext to achieve a multiple of the block size. The <a href="Advanced_Encryption_Standard" title="Advanced Encryption Standard">Advanced Encryption Standard</a> (AES) algorithm, approved by <a href="NIST" class="mw-redirect" title="NIST">NIST</a> in December 2001, uses 128-bit blocks.
</p>
<div class="mw-heading mw-heading2"><h2 id="Implementations">Implementations</h2></div>
<p>Examples of popular symmetric-key algorithms include <a href="Twofish" title="Twofish">Twofish</a>, <a href="Serpent_(cipher)" title="Serpent (cipher)">Serpent</a>, <a href="Advanced_Encryption_Standard" title="Advanced Encryption Standard">AES</a> (Rijndael), <a href="Camellia_(cipher)" title="Camellia (cipher)">Camellia</a>, <a href="Salsa20" title="Salsa20">Salsa20</a>, <a href="ChaCha20" class="mw-redirect" title="ChaCha20">ChaCha20</a>, <a href="Blowfish_(cipher)" title="Blowfish (cipher)">Blowfish</a>, <a href="CAST5" class="mw-redirect" title="CAST5">CAST5</a>, <a href="Kuznyechik" title="Kuznyechik">Kuznyechik</a>, <a href="RC4" title="RC4">RC4</a>, <a href="Data_Encryption_Standard" title="Data Encryption Standard">DES</a>, <a href="Triple_DES" title="Triple DES">3DES</a>, <a href="Skipjack_(cipher)" title="Skipjack (cipher)">Skipjack</a>, <a href="Secure_and_Fast_Encryption_Routine" title="Secure and Fast Encryption Routine">Safer</a>, and <a href="International_Data_Encryption_Algorithm" title="International Data Encryption Algorithm">IDEA</a>.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Use_as_a_cryptographic_primitive">Use as a cryptographic primitive</h2></div>
<p>Symmetric ciphers are commonly used to achieve other <a href="Cryptographic_primitive" title="Cryptographic primitive">cryptographic primitives</a> than just encryption.
</p><p>Encrypting a message does not guarantee that it will remain unchanged while encrypted. Hence, often a <a href="Message_authentication_code" title="Message authentication code">message authentication code</a> is added to a ciphertext to ensure that changes to the ciphertext will be noted by the receiver. Message authentication codes can be constructed from an <a href="AEAD" class="mw-redirect" title="AEAD">AEAD</a> cipher (e.g. <a href="AES-GCM" class="mw-redirect" title="AES-GCM">AES-GCM</a>).
</p><p>However, symmetric ciphers cannot be used for <a href="Non-repudiation" title="Non-repudiation">non-repudiation</a> purposes except by involving additional parties.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup> See the <a rel="nofollow" class="external text" href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=44736">ISO/IEC 13888-2 standard</a>.
</p><p>Another application is to build <a href="Hash_function" title="Hash function">hash functions</a> from block ciphers. See <a href="One-way_compression_function" title="One-way compression function">one-way compression function</a> for descriptions of several such methods.
</p>
<div class="mw-heading mw-heading2"><h2 id="Construction_of_symmetric_ciphers">Construction of symmetric ciphers</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1236090951">
/* start https://en.wikipedia.org/ */


.mw-parser-output .hatnote{font-style:italic}.mw-parser-output div.hatnote{padding-left:1.6em;margin-bottom:0.5em}.mw-parser-output .hatnote i{font-style:normal}.mw-parser-output .hatnote+link+.hatnote{margin-top:-0.5em}@media print{body.ns-0 .mw-parser-output .hatnote{display:none!important}}


/* end https://en.wikipedia.org/ */
</style><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="Feistel_cipher" title="Feistel cipher">Feistel cipher</a></div>
<p>Many modern block ciphers are based on a construction proposed by <a href="Horst_Feistel" title="Horst Feistel">Horst Feistel</a>. Feistel's construction makes it possible to build invertible functions from other functions that are themselves not invertible.
</p>
<div class="mw-heading mw-heading2"><h2 id="Security_of_symmetric_ciphers">Security of symmetric ciphers</h2></div>
<p>Symmetric ciphers have historically been susceptible to <a href="Known-plaintext_attack" title="Known-plaintext attack">known-plaintext attacks</a>, <a href="Chosen-plaintext_attack" title="Chosen-plaintext attack">chosen-plaintext attacks</a>, <a href="Differential_cryptanalysis" title="Differential cryptanalysis">differential cryptanalysis</a> and <a href="Linear_cryptanalysis" title="Linear cryptanalysis">linear cryptanalysis</a>. Careful construction of the functions for each <a href="Round_(cryptography)" title="Round (cryptography)">round</a> can greatly reduce the chances of a successful attack. It is also possible to increase the key length or the rounds in the encryption process to better protect against attack. This, however, tends to increase the processing power and decrease the speed at which the process runs due to the amount of operations the system needs to do.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup>
</p><p>Most modern symmetric-key algorithms appear to be resistant to the threat of <a href="Post-quantum_cryptography" title="Post-quantum cryptography">post-quantum cryptography</a>.<sup id="cite_ref-djb-intro_14-0" class="reference"><a href="#cite_note-djb-intro-14"><span class="cite-bracket">[</span>13<span class="cite-bracket">]</span></a></sup> <a href="Quantum_computing" title="Quantum computing">Quantum computers</a> would exponentially increase the speed at which these ciphers can be decoded; notably, <a href="Grover's_algorithm" title="Grover's algorithm">Grover's algorithm</a> would take the square-root of the time traditionally required for a <a href="Brute-force_attack" title="Brute-force attack">brute-force attack</a>, although these vulnerabilities can be compensated for by doubling key length.<sup id="cite_ref-djb-groverr_15-0" class="reference"><a href="#cite_note-djb-groverr-15"><span class="cite-bracket">[</span>14<span class="cite-bracket">]</span></a></sup> For example, a 128 bit AES cipher would not be secure against such an attack as it would reduce the time required to test all possible iterations from over 10 quintillion years to about six months. By contrast, it would still take a quantum computer the same amount of time to decode a 256 bit AES cipher as it would a conventional computer to decode a 128 bit AES cipher.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span class="cite-bracket">[</span>15<span class="cite-bracket">]</span></a></sup> For this reason, AES-256 is believed to be "quantum resistant".<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span class="cite-bracket">[</span>16<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span class="cite-bracket">[</span>17<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Key_management">Key management</h2></div>
<div role="note" class="hatnote navigation-not-searchable">Main article: <a href="Key_Management_Interoperability_Protocol" title="Key Management Interoperability Protocol">Key Management Interoperability Protocol</a></div>
<div class="mw-heading mw-heading2"><h2 id="Key_establishment">Key establishment</h2></div>
<div role="note" class="hatnote navigation-not-searchable">Main article: <a href="Key_establishment" class="mw-redirect" title="Key establishment">Key establishment</a></div>
<p>Symmetric-key algorithms require both the sender and the recipient of a message to have the same secret key. All early cryptographic systems required either the sender or the recipient to somehow receive a copy of that secret key over a physically secure channel.
</p><p>Nearly all modern cryptographic systems still use symmetric-key algorithms internally to encrypt the bulk of the messages, but they eliminate the need for a physically secure channel by using <a href="Diffie%E2%80%93Hellman_key_exchange" title="Diffie–Hellman key exchange">Diffie–Hellman key exchange</a> or some other <a href="Public-key_cryptography" title="Public-key cryptography">public-key protocol</a> to securely come to agreement on a fresh new secret key for each session/conversation (forward secrecy).
</p>
<div class="mw-heading mw-heading2"><h2 id="Key_generation">Key generation</h2></div>
<div role="note" class="hatnote navigation-not-searchable">Main article: <a href="Key_generation" title="Key generation">key generation</a></div>
<p>When used with asymmetric ciphers for key transfer, <a href="Cryptographically_secure_pseudorandom_number_generator" title="Cryptographically secure pseudorandom number generator">pseudorandom key generators</a> are nearly always used to generate the symmetric cipher session keys. However, lack of randomness in those generators or in their <a href="Initialization_vector" title="Initialization vector">initialization vectors</a> is disastrous and has led to cryptanalytic breaks in the past. Therefore, it is essential that an implementation use a source of high <a href="Entropy_(information_theory)" title="Entropy (information theory)">entropy</a> for its initialization.<sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span class="cite-bracket">[</span>18<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span class="cite-bracket">[</span>19<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-21" class="reference"><a href="#cite_note-21"><span class="cite-bracket">[</span>20<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Reciprocal_cipher">Reciprocal cipher</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1251242444">
/* start https://en.wikipedia.org/ */


.mw-parser-output .ambox{border:1px solid #a2a9b1;border-left:10px solid #36c;background-color:#fbfbfb;box-sizing:border-box}.mw-parser-output .ambox+link+.ambox,.mw-parser-output .ambox+link+style+.ambox,.mw-parser-output .ambox+link+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+style+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+link+.ambox{margin-top:-1px}html body.mediawiki .mw-parser-output .ambox.mbox-small-left{margin:4px 1em 4px 0;overflow:hidden;width:238px;border-collapse:collapse;font-size:88%;line-height:1.25em}.mw-parser-output .ambox-speedy{border-left:10px solid #b32424;background-color:#fee7e6}.mw-parser-output .ambox-delete{border-left:10px solid #b32424}.mw-parser-output .ambox-content{border-left:10px solid #f28500}.mw-parser-output .ambox-style{border-left:10px solid #fc3}.mw-parser-output .ambox-move{border-left:10px solid #9932cc}.mw-parser-output .ambox-protection{border-left:10px solid #a2a9b1}.mw-parser-output .ambox .mbox-text{border:none;padding:0.25em 0.5em;width:100%}.mw-parser-output .ambox .mbox-image{border:none;padding:2px 0 2px 0.5em;text-align:center}.mw-parser-output .ambox .mbox-imageright{border:none;padding:2px 0.5em 2px 0;text-align:center}.mw-parser-output .ambox .mbox-empty-cell{border:none;padding:0;width:1px}.mw-parser-output .ambox .mbox-image-div{width:52px}@media(min-width:720px){.mw-parser-output .ambox{margin:0 10%}}@media print{body.ns-0 .mw-parser-output .ambox{display:none!important}}


/* end https://en.wikipedia.org/ */
</style>
<p>A reciprocal cipher is a cipher where, just as one enters the <a href="Plaintext" title="Plaintext">plaintext</a> into the <a href="Cryptography" title="Cryptography">cryptography</a> system to get the <a href="Ciphertext" title="Ciphertext">ciphertext</a>, one could enter the ciphertext into the same place in the system to get the plaintext. A reciprocal cipher is also sometimes referred as <b>self-reciprocal cipher</b>.<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span class="cite-bracket">[</span>21<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span class="cite-bracket">[</span>22<span class="cite-bracket">]</span></a></sup>
</p><p>Practically all mechanical cipher machines implement a reciprocal cipher, a <a href="Involution_(mathematics)" title="Involution (mathematics)">mathematical involution</a> on each typed-in letter.
Instead of designing two kinds of machines, one for encrypting and one for decrypting, all the machines can be identical and can be set up (keyed) the same way.<sup id="cite_ref-24" class="reference"><a href="#cite_note-24"><span class="cite-bracket">[</span>23<span class="cite-bracket">]</span></a></sup>
</p><p>Examples of reciprocal ciphers include:
</p>
<ul><li><a href="Atbash" title="Atbash">Atbash</a></li>
<li><a href="Beaufort_cipher" title="Beaufort cipher">Beaufort cipher</a><sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span class="cite-bracket">[</span>24<span class="cite-bracket">]</span></a></sup></li>
<li><a href="Enigma_machine" title="Enigma machine">Enigma machine</a><sup id="cite_ref-26" class="reference"><a href="#cite_note-26"><span class="cite-bracket">[</span>25<span class="cite-bracket">]</span></a></sup></li>
<li>Marie Antoinette and <a href="Axel_von_Fersen_the_Younger" title="Axel von Fersen the Younger">Axel von Fersen</a> communicated with a self-reciprocal cipher.<sup id="cite_ref-27" class="reference"><a href="#cite_note-27"><span class="cite-bracket">[</span>26<span class="cite-bracket">]</span></a></sup></li>
<li>the Porta polyalphabetic cipher is self-reciprocal.<sup id="cite_ref-28" class="reference"><a href="#cite_note-28"><span class="cite-bracket">[</span>27<span class="cite-bracket">]</span></a></sup></li>
<li><a href="Purple_cipher" class="mw-redirect" title="Purple cipher">Purple cipher</a><sup id="cite_ref-29" class="reference"><a href="#cite_note-29"><span class="cite-bracket">[</span>28<span class="cite-bracket">]</span></a></sup></li>
<li><a href="RC4" title="RC4">RC4</a></li>
<li><a href="ROT13" title="ROT13">ROT13</a></li>
<li><a href="XOR_cipher" title="XOR cipher">XOR cipher</a></li>
<li><a href="Vatsyayana_cipher" class="mw-redirect" title="Vatsyayana cipher">Vatsyayana cipher</a></li></ul>
<p>The majority of all modern ciphers can be classified as either a <a href="Stream_cipher" title="Stream cipher">stream cipher</a>, most of which use a reciprocal <a href="XOR_cipher" title="XOR cipher">XOR cipher</a> combiner, or a <a href="Block_cipher" title="Block cipher">block cipher</a>, most of which use a <a href="Feistel_cipher" title="Feistel cipher">Feistel cipher</a> or <a href="Lai%E2%80%93Massey_scheme" title="Lai–Massey scheme">Lai–Massey scheme</a> with a reciprocal transformation in each round.
</p>
<div class="mw-heading mw-heading2"><h2 id="Notes">Notes</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1239543626">
/* start https://en.wikipedia.org/ */


.mw-parser-output .reflist{margin-bottom:0.5em;list-style-type:decimal}@media screen{.mw-parser-output .reflist{font-size:90%}}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}


/* end https://en.wikipedia.org/ */
</style><div class="reflist reflist-lower-alpha">
<div class="mw-references-wrap"><ol class="references">
<li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text">Other terms for symmetric-key encryption are <i>secret-key</i>, <i>single-key</i>, <i>shared-key</i>, <i>one-key</i>, and <i>private-key</i> encryption. Use of the last and first terms can create ambiguity with similar terminology used in <a href="Public-key_cryptography" title="Public-key cryptography">public-key cryptography</a>. Symmetric-key cryptography is to be contrasted with <a href="Asymmetric-key_cryptography" class="mw-redirect" title="Asymmetric-key cryptography">asymmetric-key cryptography</a>.</span>
</li>
</ol></div></div>
<div class="mw-heading mw-heading2"><h2 id="References">References</h2></div>
<div class="reflist">
<div class="mw-references-wrap mw-references-columns"><ol class="references">
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1238218222">
/* start https://en.wikipedia.org/ */


.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("./mw/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("./mw/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("./mw/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("./mw/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}


/* end https://en.wikipedia.org/ */
</style><cite id="CITEREFKartit2016" class="citation journal cs1">Kartit, Zaid (February 2016). <a rel="nofollow" class="external text" href="https://books.google.com/books?id=uEGFCwAAQBAJ&amp;q=%22keys+may+be+identical%22&amp;pg=PA147">"Applying Encryption Algorithms for Data Security in Cloud Storage, Kartit, et al"</a>. <i>Advances in Ubiquitous Networking: Proceedings of UNet15</i>: 147. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>9789812879905</bdi>.</cite></span>
</li>
<li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><cite id="CITEREFDelfs,_HansKnebl,_Helmut2007" class="citation book cs1">Delfs, Hans; Knebl, Helmut (2007). <a rel="nofollow" class="external text" href="https://books.google.com/books?id=Nnvhz_VqAS4C&amp;pg=PA11">"Symmetric-key encryption"</a>. <i>Introduction to cryptography: principles and applications</i>. Springer. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>9783540492436</bdi>.</cite></span>
</li>
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><cite id="CITEREFMullen,_GaryMummert,_Carl2007" class="citation book cs1">Mullen, Gary; Mummert, Carl (2007). <a rel="nofollow" class="external text" href="https://books.google.com/books?id=yDgWctqWL4wC&amp;pg=PA112"><i>Finite fields and applications</i></a>. American Mathematical Society. p.&nbsp;112. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>9780821844182</bdi>.</cite></span>
</li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.geeksforgeeks.org/difference-between-symmetric-and-asymmetric-key-encryption/">"Demystifying symmetric and asymmetric methods of encryption"</a>. Geeks for Geeks. 2017-09-28.</cite></span>
</li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><cite id="CITEREFJohnson2016" class="citation cs2">Johnson, Leighton (2016), <span class="id-lock-subscription" title="Paid subscription required"><a rel="nofollow" class="external text" href="https://dx.doi.org/10.1016/b978-0-12-802324-2.00011-7">"Security Component Fundamentals for Assessment"</a></span>, <i>Security Controls Evaluation, Testing, and Assessment Handbook</i>, Elsevier, pp.&nbsp;<span class="nowrap">531–</span>627, <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1016%2Fb978-0-12-802324-2.00011-7">10.1016/b978-0-12-802324-2.00011-7</a>, <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>9780128023242</bdi>, <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a>&nbsp;<a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:63087943">63087943</a><span class="reference-accessdate">, retrieved <span class="nowrap">2021-12-06</span></span></cite></span>
</li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite id="CITEREFAlvarezCaballero-GilSantonjaZamora2017" class="citation journal cs1">Alvarez, Rafael; Caballero-Gil, Cándido; Santonja, Juan; Zamora, Antonio (2017-06-27). <a rel="nofollow" class="external text" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5551094">"Algorithms for Lightweight Key Exchange"</a>. <i>Sensors</i>. <b>17</b> (7): 1517. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://doi.org/10.3390%2Fs17071517">10.3390/s17071517</a></span>. <a href="ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a>&nbsp;<a rel="nofollow" class="external text" href="https://search.worldcat.org/issn/1424-8220">1424-8220</a>. <a href="PMC_(identifier)" class="mw-redirect" title="PMC (identifier)">PMC</a>&nbsp;<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5551094">5551094</a></span>. <a href="PMID_(identifier)" class="mw-redirect" title="PMID (identifier)">PMID</a>&nbsp;<a rel="nofollow" class="external text" href="https://pubmed.ncbi.nlm.nih.gov/28654006">28654006</a>.</cite></span>
</li>
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><cite id="CITEREFBernsteinLange2017" class="citation journal cs1">Bernstein, Daniel J.; Lange, Tanja (2017-09-14). <a rel="nofollow" class="external text" href="http://www.nature.com/articles/nature23461">"Post-quantum cryptography"</a>. <i>Nature</i>. <b>549</b> (7671): <span class="nowrap">188–</span>194. <a href="Bibcode_(identifier)" class="mw-redirect" title="Bibcode (identifier)">Bibcode</a>:<a rel="nofollow" class="external text" href="https://ui.adsabs.harvard.edu/abs/2017Natur.549..188B">2017Natur.549..188B</a>. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1038%2Fnature23461">10.1038/nature23461</a>. <a href="ISSN_(identifier)" class="mw-redirect" title="ISSN (identifier)">ISSN</a>&nbsp;<a rel="nofollow" class="external text" href="https://search.worldcat.org/issn/0028-0836">0028-0836</a>. <a href="PMID_(identifier)" class="mw-redirect" title="PMID (identifier)">PMID</a>&nbsp;<a rel="nofollow" class="external text" href="https://pubmed.ncbi.nlm.nih.gov/28905891">28905891</a>. <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a>&nbsp;<a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:4446249">4446249</a>.</cite></span>
</li>
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><cite id="CITEREFPelzl_&amp;_Paar2010" class="citation book cs1">Pelzl &amp; Paar (2010). <span class="id-lock-limited" title="Free access subject to limited trial, subscription normally required"><a rel="nofollow" class="external text" href="https://archive.org/details/understandingcry00paar"><i>Understanding Cryptography</i></a></span>. Berlin: Springer-Verlag. p.&nbsp;<a rel="nofollow" class="external text" href="https://archive.org/details/understandingcry00paar/page/n44">30</a>. <a href="Bibcode_(identifier)" class="mw-redirect" title="Bibcode (identifier)">Bibcode</a>:<a rel="nofollow" class="external text" href="https://ui.adsabs.harvard.edu/abs/2010uncr.book.....P">2010uncr.book.....P</a>.</cite></span>
</li>
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><cite id="CITEREFBellareRogaway2005" class="citation book cs1">Bellare, Mihir; Rogaway, Phillip (2005). <a rel="nofollow" class="external text" href="https://web.cs.ucdavis.edu/~rogaway/classes/227/spring05/book/main.pdf"><i>Introduction to Modern Cryptography</i></a> <span class="cs1-format">(PDF)</span>.</cite></span>
</li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><cite id="CITEREFRoeder" class="citation web cs1">Roeder, Tom. <a rel="nofollow" class="external text" href="http://www.cs.cornell.edu/courses/cs5430/2010sp/TL03.symmetric.html">"Symmetric-Key Cryptography"</a>. <i>www.cs.cornell.edu</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-02-05</span></span>.</cite></span>
</li>
<li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://www.iso.org/cms/render/live/en/sites/isoorg/contents/data/standard/04/47/44736.html">"ISO/IEC 13888-2:2010"</a>. <i>ISO</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-02-04</span></span>.</cite></span>
</li>
<li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><cite id="CITEREFDavid_R._Mirza_AhmadRyan_Russell2002" class="citation book cs1">David R. Mirza Ahmad; Ryan Russell (2002). <i>Hack proofing your network</i> (2nd&nbsp;ed.). Rockland, MA: Syngress. pp.&nbsp;<span class="nowrap">165–</span>203. <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>1-932266-18-6</bdi>. <a href="OCLC_(identifier)" class="mw-redirect" title="OCLC (identifier)">OCLC</a>&nbsp;<a rel="nofollow" class="external text" href="https://search.worldcat.org/oclc/51564102">51564102</a>.</cite></span>
</li>
<li id="cite_note-djb-intro-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-djb-intro_14-0">^</a></b></span> <span class="reference-text"><cite id="CITEREFDaniel_J._Bernstein2009" class="citation book cs1"><a href="Daniel_J._Bernstein" title="Daniel J. Bernstein">Daniel J. Bernstein</a> (2009). <a rel="nofollow" class="external text" href="http://www.pqcrypto.org/www.springer.com/cda/content/document/cda_downloaddocument/9783540887010-c1.pdf">"Introduction to post-quantum cryptography"</a> <span class="cs1-format">(PDF)</span>. <i>Post-Quantum Cryptography</i>.</cite></span>
</li>
<li id="cite_note-djb-groverr-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-djb-groverr_15-0">^</a></b></span> <span class="reference-text"><cite id="CITEREFDaniel_J._Bernstein2010" class="citation journal cs1"><a href="Daniel_J._Bernstein" title="Daniel J. Bernstein">Daniel J. Bernstein</a> (2010-03-03). <a rel="nofollow" class="external text" href="http://cr.yp.to/codes/grovercode-20100303.pdf">"Grover vs. McEliece"</a> <span class="cs1-format">(PDF)</span>.</cite> <span class="cs1-visible-error citation-comment"><code class="cs1-code">{{cite journal}}</code>: </span><span class="cs1-visible-error citation-comment">Cite journal requires <code class="cs1-code">|journal=</code> (help)</span></span>
</li>
<li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><cite id="CITEREFWood2011" class="citation web cs1">Wood, Lamont (2011-03-21). <a rel="nofollow" class="external text" href="https://www.computerworld.com/article/2550008/the-clock-is-ticking-for-encryption.html">"The Clock Is Ticking for Encryption"</a>. <i>Computerworld</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2022-12-05</span></span>.</cite></span>
</li>
<li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><cite id="CITEREFO'Shea2022" class="citation web cs1">O'Shea, Dan (2022-04-29). <a rel="nofollow" class="external text" href="https://www.fierceelectronics.com/electronics/aes-256-joins-quantum-resistance">"AES-256 joins the quantum resistance"</a>. <i>Fierce Electronics</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2022-12-05</span></span>.</cite></span>
</li>
<li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><cite id="CITEREFWeissbaumLugrin2023" class="citation cs2">Weissbaum, François; Lugrin, Thomas (2023), Mulder, Valentin; Mermoud, Alain; Lenders, Vincent; Tellenbach, Bernhard (eds.), "Symmetric Cryptography", <i>Trends in Data Protection and Encryption Technologies</i>, Cham: Springer Nature Switzerland, pp.&nbsp;<span class="nowrap">7–</span>10, <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://doi.org/10.1007%2F978-3-031-33386-6_2">10.1007/978-3-031-33386-6_2</a></span>, <a href="ISBN_(identifier)" class="mw-redirect" title="ISBN (identifier)">ISBN</a>&nbsp;<bdi>978-3-031-33386-6</bdi></cite></span>
</li>
<li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text">
Ian Goldberg and David Wagner.
<a rel="nofollow" class="external text" href="http://www.cs.berkeley.edu/~daw/papers/ddj-netscape.html">"Randomness and the Netscape Browser"</a>.
January 1996 Dr. Dobb's Journal.
quote:
"it is vital that the secret keys be generated from an unpredictable random-number source."</span>
</li>
<li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text">
<cite id="CITEREFRistenpartYilek2010" class="citation web cs1">Ristenpart, Thomas; Yilek, Scott (2010). <a rel="nofollow" class="external text" href="https://www.ndss-symposium.org/wp-content/uploads/2017/09/rist.pdf">"When Good Randomness Goes Bad: Virtual Machine Reset Vulnerabilities and Hedging Deployed Cryptography"</a> <span class="cs1-format">(PDF)</span>. <i>NDSS Symposium 2010</i>. <q>Random number generators (RNGs) are consistently a weak link in the secure use of cryptography.</q></cite></span>
</li>
<li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://www.webhosting.uk.com/blog/symmetric-cryptography/">"Symmetric Cryptography"</a>. James. 2006-03-11.</cite></span>
</li>
<li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text">
Paul Reuvers and Marc Simons.
Crypto Museum.
<a rel="nofollow" class="external text" href="https://www.cryptomuseum.com/crypto/enigma/uhr/">"Enigma Uhr"</a>.
2009.</span>
</li>
<li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text">
Chris Christensen.
<a rel="nofollow" class="external text" href="https://www.nku.edu/~christensen/section%201%20substitution%20ciphers.pdf">"Simple Substitution Ciphers"</a>.
2006.</span>
</li>
<li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text">
Greg Goebel.
<a rel="nofollow" class="external text" href="http://vc.airvectors.net/ttcode_05.html">"The Mechanization of Ciphers"</a>.
2018.</span>
</li>
<li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text">
"... the true Beaufort cipher. Notice that we have <i>reciprocal encipherment</i>; encipherment and decipherment are identically the same thing."
--
Helen F. Gaines.
<a rel="nofollow" class="external text" href="https://books.google.com/books?id=Zb2RBQAAQBAJ">"Cryptanalysis: A Study of Ciphers and Their Solution"</a>.
2014.
p. 121.</span>
</li>
<li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text">
Greg Goebel.
<a rel="nofollow" class="external text" href="http://vc.airvectors.net/ttcode_05.html">"The Mechanization of Ciphers"</a>.
2018.</span>
</li>
<li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-27">^</a></b></span> <span class="reference-text">
Friedrich L. Bauer.
<a rel="nofollow" class="external text" href="https://books.google.com/books?id=hfWTDr_bvMwC">"Decrypted Secrets: Methods and Maxims of Cryptology"</a>.
2006.
p. 144</span>
</li>
<li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text">
David Salomon.
<a rel="nofollow" class="external text" href="https://books.google.com/books?id=Zr9bjEpXKnIC">"Coding for Data and Computer Communications"</a>.
2006.
p. 245</span>
</li>
<li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text">
Greg Goebel.
<a rel="nofollow" class="external text" href="http://vc.airvectors.net/ttcode_06.html">"US Codebreakers In The Shadow Of War"</a>.
2018.</span>
</li>
</ol></div></div>
<div class="navbox-styles"><style data-mw-deduplicate="TemplateStyles:r1129693374">
/* start https://en.wikipedia.org/ */


.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}


/* end https://en.wikipedia.org/ */
</style><style data-mw-deduplicate="TemplateStyles:r1236075235">
/* start https://en.wikipedia.org/ */


.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}


/* end https://en.wikipedia.org/ */
</style><style data-mw-deduplicate="TemplateStyles:r1239400231">
/* start https://en.wikipedia.org/ */


.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}


/* end https://en.wikipedia.org/ */
</style></div><div role="navigation" class="navbox" aria-label="Navbox0" style="padding:3px"><table class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Block_ciphers_(security_summary)197" style="font-size:114%;margin:0 4em"><a href="Block_cipher" title="Block cipher">Block ciphers</a> (<a href="Cipher_security_summary" title="Cipher security summary">security summary</a>)</div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Common<br>algorithms</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Advanced_Encryption_Standard" title="Advanced Encryption Standard">AES</a></li>
<li><a href="Blowfish_(cipher)" title="Blowfish (cipher)">Blowfish</a></li>
<li><a href="Data_Encryption_Standard" title="Data Encryption Standard">DES</a> (<a href="DES_supplementary_material" title="DES supplementary material">internal mechanics</a>, <a href="Triple_DES" title="Triple DES">Triple DES</a>)</li>
<li><a href="Serpent_(cipher)" title="Serpent (cipher)">Serpent</a></li>
<li><a href="SM4_(cipher)" title="SM4 (cipher)">SM4</a></li>
<li><a href="Twofish" title="Twofish">Twofish</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Less common<br>algorithms</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="ARIA_(cipher)" title="ARIA (cipher)">ARIA</a></li>
<li><a href="Camellia_(cipher)" title="Camellia (cipher)">Camellia</a></li>
<li><a href="CAST-128" title="CAST-128">CAST-128</a></li>
<li><a href="GOST_(block_cipher)" title="GOST (block cipher)">GOST</a></li>
<li><a href="International_Data_Encryption_Algorithm" title="International Data Encryption Algorithm">IDEA</a></li>
<li><a href="LEA_(cipher)" title="LEA (cipher)">LEA</a></li>
<li><a href="RC5" title="RC5">RC5</a></li>
<li><a href="RC6" title="RC6">RC6</a></li>
<li><a href="SEED" title="SEED">SEED</a></li>
<li><a href="Skipjack_(cipher)" title="Skipjack (cipher)">Skipjack</a></li>
<li><a href="Tiny_Encryption_Algorithm" title="Tiny Encryption Algorithm">TEA</a></li>
<li><a href="XTEA" title="XTEA">XTEA</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other<br>algorithms</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="3-Way" title="3-Way">3-Way</a></li>
<li><a href="Adiantum_(cipher)" title="Adiantum (cipher)">Adiantum</a></li>
<li><a href="Akelarre_(cipher)" title="Akelarre (cipher)">Akelarre</a></li>
<li><a href="Anubis_(cipher)" title="Anubis (cipher)">Anubis</a></li>
<li><a href="Ascon_(cipher)" title="Ascon (cipher)">Ascon</a></li>
<li><a href="BaseKing" title="BaseKing">BaseKing</a></li>
<li><a href="BassOmatic" title="BassOmatic">BassOmatic</a></li>
<li><a href="BATON" title="BATON">BATON</a></li>
<li><a href="BEAR_and_LION_ciphers" title="BEAR and LION ciphers">BEAR and LION</a></li>
<li><a href="CAST-256" title="CAST-256">CAST-256</a></li>
<li><a href="Chiasmus_(cipher)" title="Chiasmus (cipher)">Chiasmus</a></li>
<li><a href="CIKS-1" title="CIKS-1">CIKS-1</a></li>
<li><a href="CIPHERUNICORN-A" title="CIPHERUNICORN-A">CIPHERUNICORN-A</a></li>
<li><a href="CIPHERUNICORN-E" title="CIPHERUNICORN-E">CIPHERUNICORN-E</a></li>
<li><a href="CLEFIA" title="CLEFIA">CLEFIA</a></li>
<li><a href="Cellular_Message_Encryption_Algorithm" title="Cellular Message Encryption Algorithm">CMEA</a></li>
<li><a href="Cobra_ciphers" title="Cobra ciphers">Cobra</a></li>
<li><a href="COCONUT98" title="COCONUT98">COCONUT98</a></li>
<li><a href="Crab_(cipher)" title="Crab (cipher)">Crab</a></li>
<li><a href="Cryptomeria_cipher" title="Cryptomeria cipher">Cryptomeria/C2</a></li>
<li><a href="CRYPTON" title="CRYPTON">CRYPTON</a></li>
<li><a href="CS-Cipher" title="CS-Cipher">CS-Cipher</a></li>
<li><a href="DEAL" title="DEAL">DEAL</a></li>
<li><a href="DES-X" title="DES-X">DES-X</a></li>
<li><a href="DFC_(cipher)" title="DFC (cipher)">DFC</a></li>
<li><a href="E2_(cipher)" title="E2 (cipher)">E2</a></li>
<li><a href="FEAL" title="FEAL">FEAL</a></li>
<li><a href="FEA-M" title="FEA-M">FEA-M</a></li>
<li><a href="FROG" title="FROG">FROG</a></li>
<li><a href="GDES" title="GDES">G-DES</a></li>
<li><a href="Grand_Cru_(cipher)" title="Grand Cru (cipher)">Grand Cru</a></li>
<li><a href="Hasty_Pudding_cipher" title="Hasty Pudding cipher">Hasty Pudding cipher</a></li>
<li><a href="Hierocrypt" title="Hierocrypt">Hierocrypt</a></li>
<li><a href="ICE_(cipher)" title="ICE (cipher)">ICE</a></li>
<li><a href="IDEA_NXT" title="IDEA NXT">IDEA NXT</a></li>
<li><a href="Intel_Cascade_Cipher" title="Intel Cascade Cipher">Intel Cascade Cipher</a></li>
<li><a href="Iraqi_block_cipher" title="Iraqi block cipher">Iraqi</a></li>
<li><a href="Kalyna_(cipher)" title="Kalyna (cipher)">Kalyna</a></li>
<li><a href="KASUMI" title="KASUMI">KASUMI</a></li>
<li><a href="KeeLoq" title="KeeLoq">KeeLoq</a></li>
<li><a href="KHAZAD" title="KHAZAD">KHAZAD</a></li>
<li><a href="Khufu_and_Khafre" title="Khufu and Khafre">Khufu and Khafre</a></li>
<li><a href="KN-Cipher" title="KN-Cipher">KN-Cipher</a></li>
<li><a href="Kuznyechik" title="Kuznyechik">Kuznyechik</a></li>
<li><a href="Ladder-DES" title="Ladder-DES">Ladder-DES</a></li>
<li>LOKI (<a href="LOKI97" title="LOKI97">97</a>, <a href="LOKI" title="LOKI">89/91</a>)</li>
<li><a href="Lucifer_(cipher)" title="Lucifer (cipher)">Lucifer</a></li>
<li><a href="M6_(cipher)" title="M6 (cipher)">M6</a></li>
<li><a href="M8_(cipher)" title="M8 (cipher)">M8</a></li>
<li><a href="MacGuffin_(cipher)" title="MacGuffin (cipher)">MacGuffin</a></li>
<li><a href="Madryga" title="Madryga">Madryga</a></li>
<li><a href="MAGENTA" title="MAGENTA">MAGENTA</a></li>
<li><a href="MARS_(cipher)" title="MARS (cipher)">MARS</a></li>
<li><a href="Mercy_(cipher)" title="Mercy (cipher)">Mercy</a></li>
<li><a href="MESH_(cipher)" title="MESH (cipher)">MESH</a></li>
<li><a href="MISTY1" title="MISTY1">MISTY1</a></li>
<li><a href="MMB_(cipher)" title="MMB (cipher)">MMB</a></li>
<li><a href="MULTI2" title="MULTI2">MULTI2</a></li>
<li><a href="MultiSwap" title="MultiSwap">MultiSwap</a></li>
<li><a href="New_Data_Seal" title="New Data Seal">New Data Seal</a></li>
<li><a href="NewDES" title="NewDES">NewDES</a></li>
<li><a href="Nimbus_(cipher)" title="Nimbus (cipher)">Nimbus</a></li>
<li><a href="NOEKEON" title="NOEKEON">NOEKEON</a></li>
<li><a href="NUSH" title="NUSH">NUSH</a></li>
<li><a href="PRESENT" title="PRESENT">PRESENT</a></li>
<li><a href="Prince_(cipher)" title="Prince (cipher)">Prince</a></li>
<li><a href="Q_(cipher)" title="Q (cipher)">Q</a></li>
<li><a href="QARMA" title="QARMA">QARMA</a></li>
<li><a href="RC2" title="RC2">RC2</a></li>
<li><a href="REDOC" title="REDOC">REDOC</a></li>
<li><a href="Red_Pike_(cipher)" title="Red Pike (cipher)">Red Pike</a></li>
<li><a href="S-1_block_cipher" title="S-1 block cipher">S-1</a></li>
<li><a href="Secure_and_Fast_Encryption_Routine" title="Secure and Fast Encryption Routine">SAFER</a></li>
<li><a href="SAVILLE" title="SAVILLE">SAVILLE</a></li>
<li><a href="SC2000" title="SC2000">SC2000</a></li>
<li><a href="SHACAL" title="SHACAL">SHACAL</a></li>
<li><a href="SHARK" title="SHARK">SHARK</a></li>
<li><a href="Simon_(cipher)" title="Simon (cipher)">Simon</a></li>
<li><a href="Speck_(cipher)" title="Speck (cipher)">Speck</a></li>
<li><a href="Spectr-H64" title="Spectr-H64">Spectr-H64</a></li>
<li><a href="Square_(cipher)" title="Square (cipher)">Square</a></li>
<li><a href="SXAL/MBAL" title="SXAL/MBAL">SXAL/MBAL</a></li>
<li><a href="Threefish" title="Threefish">Threefish</a></li>
<li><a href="Treyfer" title="Treyfer">Treyfer</a></li>
<li><a href="UES_(cipher)" title="UES (cipher)">UES</a></li>
<li><a href="Xmx" title="Xmx">xmx</a></li>
<li><a href="XXTEA" title="XXTEA">XXTEA</a></li>
<li><a href="Zodiac_(cipher)" title="Zodiac (cipher)">Zodiac</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Design</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Feistel_cipher" title="Feistel cipher">Feistel network</a></li>
<li><a href="Key_schedule" title="Key schedule">Key schedule</a></li>
<li><a href="Lai%E2%80%93Massey_scheme" title="Lai–Massey scheme">Lai–Massey scheme</a></li>
<li><a href="Product_cipher" title="Product cipher">Product cipher</a></li>
<li><a href="S-box" title="S-box">S-box</a></li>
<li><a href="Permutation_box" title="Permutation box">P-box</a></li>
<li><a href="Substitution%E2%80%93permutation_network" title="Substitution–permutation network">SPN</a></li>
<li><a href="Confusion_and_diffusion" title="Confusion and diffusion">Confusion and diffusion</a></li>
<li><a href="Round_(cryptography)" title="Round (cryptography)">Round</a></li>
<li><a href="Avalanche_effect" title="Avalanche effect">Avalanche effect</a></li>
<li><a href="Block_size_(cryptography)" title="Block size (cryptography)">Block size</a></li>
<li><a href="Key_size" title="Key size">Key size</a></li>
<li><a href="Key_whitening" title="Key whitening">Key whitening</a> (<a href="Whitening_transformation" title="Whitening transformation">Whitening transformation</a>)</li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Attack<br>(<a href="Cryptanalysis" title="Cryptanalysis">cryptanalysis</a>)</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Brute-force_attack" title="Brute-force attack">Brute-force</a> (<a href="EFF_DES_cracker" title="EFF DES cracker">EFF DES cracker</a>)</li>
<li><a href="Meet-in-the-middle_attack" title="Meet-in-the-middle attack">MITM</a>
<ul><li><a href="Biclique_attack" title="Biclique attack">Biclique attack</a></li>
<li><a href="3-subset_meet-in-the-middle_attack" title="3-subset meet-in-the-middle attack">3-subset MITM attack</a></li></ul></li>
<li><a href="Linear_cryptanalysis" title="Linear cryptanalysis">Linear</a> (<a href="Piling-up_lemma" title="Piling-up lemma">Piling-up lemma</a>)</li>
<li><a href="Differential_cryptanalysis" title="Differential cryptanalysis">Differential</a>
<ul><li><a href="Impossible_differential_cryptanalysis" title="Impossible differential cryptanalysis">Impossible</a></li>
<li><a href="Truncated_differential_cryptanalysis" title="Truncated differential cryptanalysis">Truncated</a></li>
<li><a href="Higher-order_differential_cryptanalysis" title="Higher-order differential cryptanalysis">Higher-order</a></li></ul></li>
<li><a href="Differential-linear_attack" title="Differential-linear attack">Differential-linear</a></li>
<li><a href="Distinguishing_attack" title="Distinguishing attack">Distinguishing</a> (<a href="Known-key_distinguishing_attack" title="Known-key distinguishing attack">Known-key</a>)</li>
<li><a href="Integral_cryptanalysis" title="Integral cryptanalysis">Integral/Square</a></li>
<li><a href="Boomerang_attack" title="Boomerang attack">Boomerang</a></li>
<li><a href="Mod_n_cryptanalysis" title="Mod n cryptanalysis">Mod <i>n</i></a></li>
<li><a href="Related-key_attack" title="Related-key attack">Related-key</a></li>
<li><a href="Slide_attack" title="Slide attack">Slide</a></li>
<li><a href="Rotational_cryptanalysis" title="Rotational cryptanalysis">Rotational</a></li>
<li><a href="Side-channel_attack" title="Side-channel attack">Side-channel</a>
<ul><li><a href="Timing_attack" title="Timing attack">Timing</a></li>
<li><a href="Power_analysis" title="Power analysis">Power-monitoring</a></li>
<li><a href="Electromagnetic_attack" title="Electromagnetic attack">Electromagnetic</a></li>
<li><a href="Acoustic_cryptanalysis" title="Acoustic cryptanalysis">Acoustic</a></li>
<li><a href="Differential_fault_analysis" title="Differential fault analysis">Differential-fault</a></li></ul></li>
<li><a href="XSL_attack" title="XSL attack">XSL</a></li>
<li><a href="Interpolation_attack" title="Interpolation attack">Interpolation</a></li>
<li><a href="Partitioning_cryptanalysis" title="Partitioning cryptanalysis">Partitioning</a></li>
<li><a href="Rubber-hose_cryptanalysis" class="mw-redirect" title="Rubber-hose cryptanalysis">Rubber-hose</a></li>
<li><a href="Black-bag_cryptanalysis" title="Black-bag cryptanalysis">Black-bag</a></li>
<li><a href="Davies_attack" title="Davies attack">Davies</a></li>
<li><a href="Rebound_attack" title="Rebound attack">Rebound</a></li>
<li><a href="Weak_key" title="Weak key">Weak key</a></li>
<li><a href="Kendall_rank_correlation_coefficient" title="Kendall rank correlation coefficient">Tau</a></li>
<li><a href="Chi-squared_test" title="Chi-squared test">Chi-square</a></li>
<li><a href="Time/memory/data_tradeoff_attack" title="Time/memory/data tradeoff attack">Time/memory/data tradeoff</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Standardization</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Advanced_Encryption_Standard_process" title="Advanced Encryption Standard process">AES process</a></li>
<li><a href="CRYPTREC" title="CRYPTREC">CRYPTREC</a></li>
<li><a href="NESSIE" title="NESSIE">NESSIE</a></li>
<li><a href="NSA_Suite_B_Cryptography" title="NSA Suite B Cryptography">NSA Suite B</a></li>
<li><a href="Commercial_National_Security_Algorithm_Suite" title="Commercial National Security Algorithm Suite">CNSA</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Utilization</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Initialization_vector" title="Initialization vector">Initialization vector</a></li>
<li><a href="Block_cipher_mode_of_operation" title="Block cipher mode of operation">Mode of operation</a></li>
<li><a href="Padding_(cryptography)" title="Padding (cryptography)">Padding</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Stream_ciphers94" style="font-size:114%;margin:0 4em"><a href="Stream_cipher" title="Stream cipher">Stream ciphers</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Widely used ciphers</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="A5/1" title="A5/1">A5/1</a></li>
<li><a href="A5/2" title="A5/2">A5/2</a></li>
<li><a href="Salsa20#ChaCha_variant" title="Salsa20">ChaCha</a></li>
<li><a href="Crypto-1" title="Crypto-1">Crypto-1</a></li>
<li><a href="E0_(cipher)" title="E0 (cipher)">E0</a></li>
<li><a href="RC4" title="RC4">RC4</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="ESTREAM" title="ESTREAM">eSTREAM</a> Portfolio</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Software</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="HC-256" title="HC-256">HC-128</a></li>
<li><a href="Rabbit_(cipher)" title="Rabbit (cipher)">Rabbit</a></li>
<li><a href="Salsa20" title="Salsa20">Salsa20</a></li>
<li><a href="SOSEMANUK" title="SOSEMANUK">SOSEMANUK</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Hardware</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Grain_(cipher)" title="Grain (cipher)">Grain</a></li>
<li><a href="MICKEY" title="MICKEY">MICKEY</a></li>
<li><a href="Trivium_(cipher)" title="Trivium (cipher)">Trivium</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other ciphers</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Achterbahn_(stream_cipher)" title="Achterbahn (stream cipher)">Achterbahn</a></li>
<li><a href="F-FCSR" title="F-FCSR">F-FCSR</a></li>
<li><a href="FISH_(cipher)" title="FISH (cipher)">FISH</a></li>
<li><a href="ISAAC_(cipher)" title="ISAAC (cipher)">ISAAC</a></li>
<li><a href="KCipher-2" title="KCipher-2">KCipher-2</a></li>
<li><a href="MUGI" title="MUGI">MUGI</a></li>
<li><a href="ORYX" title="ORYX">ORYX</a></li>
<li><a href="Panama_(cryptography)" title="Panama (cryptography)">Panama</a></li>
<li><a href="Phelix" title="Phelix">Phelix</a></li>
<li><a href="Pike_(cipher)" title="Pike (cipher)">Pike</a></li>
<li><a href="Py_(cipher)" title="Py (cipher)">Py</a></li>
<li><a href="QUAD_(cipher)" title="QUAD (cipher)">QUAD</a></li>
<li><a href="RC4#RC4+" title="RC4">RC4+</a></li>
<li><a href="RC4#RC4A" title="RC4">RC4A</a></li>
<li><a href="Scream_(cipher)" title="Scream (cipher)">Scream</a></li>
<li><a href="SEAL_(cipher)" title="SEAL (cipher)">SEAL</a></li>
<li><a href="SNOW" title="SNOW">SNOW</a></li>
<li><a href="SOBER" title="SOBER">SOBER</a></li>
<li><a href="SOBER-128" title="SOBER-128">SOBER-128</a></li>
<li><a href="Spritz_(cipher)" class="mw-redirect" title="Spritz (cipher)">Spritz</a></li>
<li><a href="Turing_(cipher)" title="Turing (cipher)">Turing</a></li>
<li><a href="VEST" title="VEST">VEST</a></li>
<li><a href="Variably_Modified_Permutation_Composition" title="Variably Modified Permutation Composition">VMPC</a></li>
<li><a href="WAKE_(cipher)" title="WAKE (cipher)">WAKE</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Generators</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Shrinking_generator" title="Shrinking generator">shrinking generator</a></li>
<li><a href="Self-shrinking_generator" title="Self-shrinking generator">self-shrinking generator</a></li>
<li><a href="Alternating_step_generator" title="Alternating step generator">alternating step generator</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Theory</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Block_cipher_mode_of_operation" title="Block cipher mode of operation">block ciphers in stream mode</a></li>
<li><a href="Shift_register" title="Shift register">shift register</a></li>
<li><a href="Linear-feedback_shift_register" title="Linear-feedback shift register">LFSR</a></li>
<li><a href="Nonlinear-feedback_shift_register" title="Nonlinear-feedback shift register">NLFSR</a></li>
<li><a href="T-function" title="T-function">T-function</a></li>
<li><a href="Initialization_vector" title="Initialization vector">IV</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Attacks</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Correlation_attack" title="Correlation attack">correlation attack</a></li>
<li><a href="Correlation_immunity" title="Correlation immunity">correlation immunity</a></li>
<li><a href="Stream_cipher_attacks" title="Stream cipher attacks">stream cipher attacks</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr></tbody></table><div></div></td></tr><tr><td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks mw-collapsible mw-collapsed navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><div id="Cryptography149" style="font-size:114%;margin:0 4em"><a href="Cryptography" title="Cryptography">Cryptography</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">General</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="History_of_cryptography" title="History of cryptography">History of cryptography</a></li>
<li><a href="Outline_of_cryptography" title="Outline of cryptography">Outline of cryptography</a></li>
<li><a href="Classical_cipher" title="Classical cipher">Classical cipher</a></li>
<li><a href="Cryptographic_protocol" title="Cryptographic protocol">Cryptographic protocol</a>
<ul><li><a href="Authentication_protocol" title="Authentication protocol">Authentication protocol</a></li></ul></li>
<li><a href="Cryptographic_primitive" title="Cryptographic primitive">Cryptographic primitive</a></li>
<li><a href="Cryptanalysis" title="Cryptanalysis">Cryptanalysis</a></li>
<li><a href="Cryptocurrency" title="Cryptocurrency">Cryptocurrency</a></li>
<li><a href="Cryptosystem" title="Cryptosystem">Cryptosystem</a></li>
<li><a href="Cryptographic_nonce" title="Cryptographic nonce">Cryptographic nonce</a></li>
<li><a href="Cryptovirology" title="Cryptovirology">Cryptovirology</a></li>
<li><a href="Hash_function" title="Hash function">Hash function</a>
<ul><li><a href="Cryptographic_hash_function" title="Cryptographic hash function">Cryptographic hash function</a></li>
<li><a href="Key_derivation_function" title="Key derivation function">Key derivation function</a></li>
<li><a href="Secure_Hash_Algorithms" title="Secure Hash Algorithms">Secure Hash Algorithms</a></li></ul></li>
<li><a href="Digital_signature" title="Digital signature">Digital signature</a></li>
<li><a href="Kleptography" title="Kleptography">Kleptography</a></li>
<li><a href="Key_(cryptography)" title="Key (cryptography)">Key (cryptography)</a></li>
<li><a href="Key_exchange" title="Key exchange">Key exchange</a></li>
<li><a href="Key_generator" title="Key generator">Key generator</a></li>
<li><a href="Key_schedule" title="Key schedule">Key schedule</a></li>
<li><a href="Key_stretching" title="Key stretching">Key stretching</a></li>
<li><a href="Keygen" title="Keygen">Keygen</a></li>
<li>Machines</li>
<li><a href="Cryptojacking_malware" class="mw-redirect" title="Cryptojacking malware">Cryptojacking malware</a></li>
<li><a href="Ransomware" title="Ransomware">Ransomware</a></li>
<li><a href="Random_number_generation" title="Random number generation">Random number generation</a>
<ul><li><a href="Cryptographically_secure_pseudorandom_number_generator" title="Cryptographically secure pseudorandom number generator">Cryptographically secure pseudorandom number generator</a> (CSPRNG)</li></ul></li>
<li><a href="Pseudorandom_noise" title="Pseudorandom noise">Pseudorandom noise</a> (PRN)</li>
<li><a href="Secure_channel" title="Secure channel">Secure channel</a></li>
<li><a href="Insecure_channel" class="mw-redirect" title="Insecure channel">Insecure channel</a></li>
<li><a href="Subliminal_channel" title="Subliminal channel">Subliminal channel</a></li>
<li><a href="Encryption" title="Encryption">Encryption</a></li>
<li><a href="Decryption" class="mw-redirect" title="Decryption">Decryption</a></li>
<li><a href="End-to-end_encryption" title="End-to-end encryption">End-to-end encryption</a></li>
<li><a href="Harvest_now%2C_decrypt_later" title="Harvest now, decrypt later">Harvest now, decrypt later</a></li>
<li><a href="Information-theoretic_security" title="Information-theoretic security">Information-theoretic security</a></li>
<li><a href="Plaintext" title="Plaintext">Plaintext</a></li>
<li><a href="Codetext" class="mw-redirect" title="Codetext">Codetext</a></li>
<li><a href="Ciphertext" title="Ciphertext">Ciphertext</a></li>
<li><a href="Shared_secret" title="Shared secret">Shared secret</a></li>
<li><a href="Trapdoor_function" title="Trapdoor function">Trapdoor function</a></li>
<li><a href="Trusted_timestamping" title="Trusted timestamping">Trusted timestamping</a></li>
<li><a href="Key-based_routing" title="Key-based routing">Key-based routing</a></li>
<li><a href="Onion_routing" title="Onion routing">Onion routing</a></li>
<li><a href="Garlic_routing" title="Garlic routing">Garlic routing</a></li>
<li><a href="Kademlia" title="Kademlia">Kademlia</a></li>
<li><a href="Mix_network" title="Mix network">Mix network</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Mathematics</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Cryptographic_hash_function" title="Cryptographic hash function">Cryptographic hash function</a></li>
<li><a href="Block_cipher" title="Block cipher">Block cipher</a></li>
<li><a href="Stream_cipher" title="Stream cipher">Stream cipher</a></li>

<li><a href="Authenticated_encryption" title="Authenticated encryption">Authenticated encryption</a></li>
<li><a href="Public-key_cryptography" title="Public-key cryptography">Public-key cryptography</a></li>
<li><a href="Quantum_key_distribution" title="Quantum key distribution">Quantum key distribution</a></li>
<li><a href="Quantum_cryptography" title="Quantum cryptography">Quantum cryptography</a></li>
<li><a href="Post-quantum_cryptography" title="Post-quantum cryptography">Post-quantum cryptography</a></li>
<li><a href="Message_authentication_code" title="Message authentication code">Message authentication code</a></li>
<li><a href="Cryptographically_secure_pseudorandom_number_generator" title="Cryptographically secure pseudorandom number generator">Random numbers</a></li>
<li><a href="Steganography" title="Steganography">Steganography</a></li></ul>
</div></td></tr><tr><td class="navbox-abovebelow" colspan="2"><div>
<ul><li><span class="noviewer" typeof="mw:File"><span title="Category"></span></span> Category</li></ul>
</div></td></tr></tbody></table><div></div></td></tr></tbody></table></div>
<div class="navbox-styles"></div><div role="navigation" class="navbox authority-control" aria-label="Navbox390" style="padding:3px"><table class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Authority control databases: National </th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"><ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://d-nb.info/gnd/4317451-6">Germany</a></span></li></ul></div></td></tr></tbody></table></div></div><!--htdig_noindex--><div><div class="zim-footer">
This article is issued from <a class="external text" title="Last edited on 2025-06-19" href="https://en.wikipedia.org/wiki/?title=Symmetric-key_algorithm&amp;oldid=1296410547">Wikipedia</a>. The text is available under <a class="external text" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">Creative Commons Attribution-Share Alike 4.0</a> unless otherwise noted. Additional terms may apply for the media files.
</div>
</div><!--/htdig_noindex--></div>
</div>
</main>
</div>
</div>
</div>

</body></html>